home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / mac / vim54bin.sit / Vim 5.4 / vimrc / vimrc
Encoding:
Text File  |  1999-08-25  |  1.1 KB  |  35 lines  |  [TEXT/VIM!]

  1. " vim: set ts=8:
  2. version 5.0
  3. set nocompatible    " Use Vim defaults (much better!)
  4. set ai            " always set autoindenting on
  5. set tw=76        " always limit the width of text to 76
  6. set bs=indent,eol,start " New syntax. This is equal to 2
  7. :if has("syntax")
  8. : syntax on        " Not supported on 68k Macs
  9. :endif
  10. set visualbell
  11. set t_vb=
  12. set cpoptions=aABceFs
  13. set incsearch
  14. set hlsearch
  15. set bg=light
  16. set modeline
  17. set hidden
  18. "set guifont=profont    " Profont is available on info-Mac
  19. " I prefer these colours, YMMV
  20. highlight Comment    guifg=Red        gui=NONE
  21. highlight Constant    guifg=Magenta        gui=NONE
  22. highlight Character    guifg=Red        gui=NONE
  23. highlight Special    guifg=SlateBlue        gui=NONE 
  24. highlight Identifier    guifg=DarkCyan        gui=NONE
  25. highlight Statement    guifg=DarkGreen        gui=NONE
  26. highlight PreProc    guifg=Purple        gui=NONE
  27. highlight Type        guifg=SeaGreen        gui=NONE
  28. highlight Normal    guibg=lightgrey        gui=NONE
  29. highlight Number    guifg=Blue        gui=NONE
  30. highlight Cursor    guibg=Green    guifg=NONE
  31. highlight NonText    guibg=darkgray        gui=NONE
  32. highlight Error        guibg=Red    guifg=White    gui=NONE
  33. highlight Todo        guifg=Blue    guibg=Yellow    gui=NONE
  34.  
  35.